################################################################################
## MOD Title:		easyUCP extension - Second profilepage
##			update 1.0.0 to 1.0.1
##
## MOD Author:		AmigaLink < webmaster@amigalink.de > (Markus Schmidt) http://www.EssenMitFreude.info
## 
## Installation Level:	Difficult
## Installation Time:	2 Minutes 
##
## Files To Edit:  	2
##			includes\usercp_viewprofile.php
##
##			templates/subSilver/admin/user_edit_body.tpl
##
## Included Files:	0
##
################################################################################
## The following sites also contain the latest version of this MOD: 
## 
## http://www.AmigaLink.de
## http://www.phpBBhacks.com
## http://www.phpBB.de
## 
## Full support for this MOD only can be obtained at: 
##
## http://www.AmigaLink.de
##  
################################################################################
################################################################################
## MOD History: 
## 
##   2006-02-08 - Version 1.0.1
##	- add two missing codes to installation guide
##
##   2006-01-29 - Version 1.0.0
##	- First Version
## 
################################################################################
##
##  This hack is released under the GPL License. 
##  This hack can be freely used, but not distributed, without permission.
##  Intellectual Property Rights are retained by the hack author(s) 
##  listed above.
##
################################################################################
##
##  BEFORE ADDING THIS HACK TO YOUR FORUM, please be sure to backup ALL
##  affected files.
##
################################################################################

#
#----------[ OPEN ]-------------------------------------
#

includes/usercp_viewprofile.php

#
#----------[ FIND ]-------------------------------------
#

	'L_SIGNATURE' => $lang['Signature'],

#
#----------[ AFTER, ADD ]-------------------------------
#

	'L_REALNAME' => $lang['realname'],

# 
#-----[ OPEN ]------------------------------------------ 
# 

templates/subSilver/admin/user_edit_body.tpl

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_HIDE_PROFILE}:</span></td>
	  <td class="row2"> 
		<input type="radio" name="hideprofile" value="1" {HIDE_PROFILE_YES} />
		<span class="gen">{L_YES}</span>&nbsp;&nbsp; 
		<input type="radio" name="hideprofile" value="0" {HIDE_PROFILE_NO} />
		<span class="gen">{L_NO}</span></td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

	<tr>
		<td class="row1"><span class="gen">{L_SECOND_PROFILE}:</span><br />
		  <span class="gensmall">{L_SECOND_PROFILE_EXPLAIN}</span></td>
		<td class="row2"><span class="gen">{SHOW_SECOND_PROFILE_SELECT_BOX}</span></td>
	</tr>

#
#----------[ SAVE AND CLOSE ALL FILES ]-----------------
#
# EoM